home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Attributes / HasForegroundColor.cp < prev    next >
Text File  |  1997-06-28  |  314b  |  18 lines

  1. // HasForegroundColor.cp
  2.  
  3. #ifndef HasForegroundColor_h
  4. #include "HasForegroundColor.h"
  5. #endif
  6. #ifndef NamedColors_h
  7. #include "NamedColors.h"
  8. #endif
  9.  
  10. void HasForegroundColor::SetForegroundColor( const RGBColor& color )
  11.   {
  12.     if ( foreground == color )
  13.         return;
  14.     
  15.     foreground = color;
  16.     ForegroundColorChanged();
  17.   }
  18.